Fix the default value of the curve-type property
authorMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 Dec 2007 15:21:24 +0000 (15:21 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 28 Dec 2007 15:21:24 +0000 (15:21 +0000)
svn path=/trunk/; revision=19271

ChangeLog
gtk/gtkcurve.c

index 5844db235def41b5c4fd561cd4d23fe608058805..763dde2e251d66956f2d80f1cc84725b5679be11 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2007-12-28  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkcurve.c: Fix the default value of the curve-type property.
+
        * gtk/gtkcombo.c: Fix the default value of the enable-arrows-always
        property.
 
index 91263aa22020ca858c1fcb99fdeb2b9108910b67..495fbb0c6e5231fb79290a60612c9d32ba843c27 100644 (file)
@@ -124,7 +124,7 @@ gtk_curve_class_init (GtkCurveClass *class)
                                                      P_("Curve type"),
                                                      P_("Is this curve linear, spline interpolated, or free-form"),
                                                      GTK_TYPE_CURVE_TYPE,
-                                                     GTK_CURVE_TYPE_LINEAR,
+                                                     GTK_CURVE_TYPE_SPLINE,
                                                      GTK_PARAM_READWRITE));
   g_object_class_install_property (gobject_class,
                                   PROP_MIN_X,